home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.19941221-19950208 / 000101_news@columbia.edu_Thu Jan 5 23:29:31 1995.msg < prev    next >
Internet Message Format  |  2020-01-01  |  2KB

  1. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA26619
  2.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Thu, 5 Jan 1995 18:29:37 -0500
  3. Received: by apakabar.cc.columbia.edu id AA15739
  4.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Thu, 5 Jan 1995 18:29:35 -0500
  5. Path: news.columbia.edu!watsun.cc.columbia.edu!fdc
  6. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  7. Newsgroups: comp.protocols.kermit.misc
  8. Subject: Re: File transfer between two+ PCs using TCP/IP?
  9. Date: 5 Jan 1995 23:29:31 GMT
  10. Organization: Columbia University
  11. Lines: 25
  12. Message-Id: <3ehvcr$fbo@apakabar.cc.columbia.edu>
  13. References: <3eh28e$2q85@ns1.cc.lehigh.edu>
  14. Nntp-Posting-Host: watsun.cc.columbia.edu
  15. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  16.  
  17. In article <3eh28e$2q85@ns1.cc.lehigh.edu>,
  18. JOHN DONALD LAESSIG <jl0h@ns1.CC.Lehigh.EDU> wrote:
  19. >Can Kermit be used simply to transfer files between two or more PCs with
  20. >ethernet boards using TCP/IP?  What is the simplest method, and what is
  21. >needed?
  22. >
  23. Configure each PC's Kermit program for TCP/IP according to the instructions
  24. in the manual, "Using MS-DOS Kermit", Chapter 17.
  25.  
  26. On one PC, tell Kermit to "set port tcp *", which means wait for an
  27. incoming TCP/IP connection, and then "server" to put it in Kermit
  28. server mode.
  29.  
  30. Then on the other PC, tell Kermit to "set port tcp xxxx", where xxxx is the
  31. IP address of the first PC, and then just give it SEND, GET, REMOTE
  32. DIRECTORY, and similar commands.
  33.  
  34. You can even transfer entire directory trees from one PC to another in
  35. this way.  Use the XSEND utility that is supplied with MS-DOS Kermit
  36. (or at least it will be supplied with version 3.14 -- in earlier versions
  37. it was on a separate "utilities" diskette).  You can ftp the XSEND
  38. utility from kermit.columbia.edu, directory kermit/a, files msixse.*.
  39. The binary is in kermit/bin/msixse.exe.
  40.  
  41. - Frank